/* Theme Name: Mostbet */

:root{
    --background: rgb(0, 35, 71);
    --text: #fff;
    --hover-text: #ffba00;
    --header: #0a519e;
    --sidebar-color: #003266;
    --sidebar-hover: #1183d3;
    --header-back: linear-gradient(to top, #00326600 0, var(--sidebar-color) 73%, var(--sidebar-color) 98%);
    --border: 20px;
    --border-slots: 15px;
    --back-color: #054588;
    --text-black: #000;
    --money-btn: linear-gradient(180deg,#fa9400,#fab700);
    --color-primary: #428cdc;
    --back-primary: linear-gradient(0deg,#428cdc 0,#0992af);
    --back-primary-hover: linear-gradient(180deg,#428cdc 0,#0992af);
    --shadow-primary: 0 11px 27px #428cdca1;
    --color-secondary: #fa4d00;
    --back-secondary: linear-gradient(to top, #fa4d00 0, #fa5e00 100%);
    --back-secondary-hover: linear-gradient(to top, #fa5e00 0, #fa7c00 100%);
    --shadow-secondary: 0 11px 27px #fa4100a1;
    --nav: #00316680;
    --border-color: #043e7d;
    --border-gray: #e8ecf1;
    --footer-back: #04386e;
    --hover-back: #115ba9;
    --text-value: #002347;
}

* { margin:0; padding:0; box-sizing:border-box; font-family: Roboto, sans-serif;}
body { overflow-x:hidden; position: relative; color: var(--text); background: var(--background);}
a { text-decoration:none; transition: 0.3s; }
input, button { box-shadow:none; border: none; }
input {outline:none;}
h1 {padding: 20px 0; color: var(--text-content);}
h2, h3, h4, h5, h6 {padding: 20px 0; color: var(--text-content);}
p, span, li, a { font-size: 18px; line-height: 30px; color: var(--text-content); }
button { cursor:pointer; background:transparent; overflow: hidden;}
img {max-width:100%; display:block; height: auto;}
html {
  scroll-behavior: smooth;
}

/* Table content */

.wp-block-table {max-width: 100%;overflow-x:auto;}
.wp-block-table table {width:100%; border-collapse: collapse; margin-bottom:20px; overflow: hidden; border-radius: var(--border);}
.wp-block-table table tr {background: var(--sidebar-color);}
.wp-block-table table td { text-align:center; padding:10px; color:var(--text);}
.wp-block-table table tr:nth-child(2n) {background:var(--background);}

.wp-block-gallery {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	text-align: center;
}

.wp-block-image {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	text-align: center;
}

.wp-block-image img {
	border-radius: var(--border);
}

a {
    text-decoration: none;
}

/* Header */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header);
    background-image: var(--header-back);
    z-index: 9;
}

header .overlay {
    display: none;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

header .overlay.active {
    display: block;
}

.header_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}

.header_top-left {
    display: flex;
    align-items: center;
}

.header_top-donload {
    display: flex;
    align-items: center;
    margin: 5px 10px;
    border-radius: var(--border);
    padding: 0 5px;
    background-color: var(--back-color);
}

.header_top-donload span {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 5px;
    line-height: 1.4;
}

.download-btn {
    padding: 10px 5px;
}

.android-icon {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/wp-content/themes/mostbet/img/android.svg);
    transition: .2s;
}

.download-btn:hover .android-icon {
    background-image: url(/wp-content/themes/mostbet/img/android-hover.svg);
}

.apple-icon {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/wp-content/themes/mostbet/img/apple.svg);
    transition: .2s;
}

.download-btn:hover .apple-icon {
    background-image: url(/wp-content/themes/mostbet/img/apple-hover.svg);
}

.header_top-blocking {
    margin: 5px 10px;
    background: var(--back-color);
    padding: 5px;
    border-radius: var(--border);
    transition: box-shadow .2s ease;
}

.header_top-blocking:hover {
    box-shadow: inset 0 0 0 1.5px var(--text);
}

.blocking-icon {
    margin: 5px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/wp-content/themes/mostbet/img/blocking.svg);
}

.header_top-money {
    background: var(--money-btn);
    border-radius: var(--border);
    color: var(--text-black);
    font-weight: 900;
    padding: 10px 60px 10px 20px;
    text-align: center;
    position: relative;
    overflow: visible;
    margin: 5px 10px;
}

.header_top-money span {
    line-height: 1.4;
    font-size: 14px;
    text-transform: uppercase;
}

.money-icon {
    width: 60px;
    height: 50px;
    background: url(/wp-content/themes/mostbet/img/money-icon.webp) no-repeat 50%/cover;
    position: absolute;
    bottom: 0;
    right: 0;
}

.header_top-bonus {
    background-color: var(--color-primary);
    background-image: var(--back-primary);
    border-radius: var(--border);
    padding: 10px;
    color: var(--text);
    box-shadow: var(--shadow-primary);
    display: flex;
    align-items: center;
}

.header_top-bonus:hover {
    color: var(--hover-text);
}

.bonus-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/wp-content/themes/mostbet/img/bonus-icon.svg);
}

.header_top-bonus:hover .bonus-icon {
    background-image: url(/wp-content/themes/mostbet/img/bonus-icon-hover.svg);
}

.header_top-bonus span {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.header_top-right {
    display: flex;
    align-items: center;
}

.button {
    color: var(--text);
    padding: 10px 15px;
    border-radius: var(--border);
}

.button span {
    text-transform: uppercase;
    line-height: 1.4;
    font-size: 14px;
    font-weight: 700;
}

.button.log_button {
    background-color: var(--color-primary);
    background-image: var(--back-primary);
    box-shadow: var(--shadow-primary);
    margin: 0 10px;
}

.button.log_button:hover {
    background-image: var(--back-primary-hover);
}

.button.reg_button {
    background-color: var(--color-secondary);
    background-image: var(--back-secondary);
    box-shadow: var(--shadow-secondary);
}

.button.reg_button:hover {
    background-image: var(--back-secondary-hover);
}

.header_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}

.logo {
    margin: 5px 10px;
}

.header_desktop .burger {
    display: none;
}

.burger img {
    width: 28px;
    height: 28px;   
}

/* Menu */

.header_nav {
    margin: 5px 10px;
    background-color: var(--nav);
    border-radius: var(--border);
    width: 80%;
    display: flex;
    justify-content: center;
}

.main_menu .menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.main_menu .menu li {
    padding: 5px 20px;
}

.main_menu .menu li a {
    color: var(--text);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    transition: color .3s ease;
}

.main_menu .menu li a:hover {
    color: var(--hover-text);
}

.main_menu .menu .current-menu-item a {
    color: var(--hover-text);
}

.main_menu .menu .euro {
	animation: pulse 1.5s infinite;
    transition: all 0.1s;
}

.main_menu .menu .euro a {
	font-weight: 700;
	color: var(--hover-text);
}

.menu_mobile .menu .euro {
	animation: pulse 1.5s infinite;
    transition: all 0.1s;
}

.menu_mobile .menu .euro a {
	font-weight: 700;
	color: var(--hover-text);
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.menu_mobile, amp-sidebar {
    background: var(--sidebar-color);
    width: 100%;
    padding: 0 20px;
    max-width: 250px;
    min-height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    display: block;
    transition: right 0.8s;
}

.menu_mobile {
    z-index: 11;
}

.menu_mobile.show {
    right: 0;
    transition: right 0.8s;
}

.menu_mobile .close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 0;
}

.close img {
    width: 28px;
    height: 28px;
}

.menu_mobile .menu {
    list-style: none;
}

.menu_mobile .menu li {
    margin-bottom: 10px;
}

.menu_mobile .menu .current-menu-item a {
    color: var(--hover-text);
}

.menu_mobile .menu li a {
    font-size: 18px;
    color: var(--text);
    font-weight: 400;
    padding: 10px 0;
}

.menu_mobile .menu li a:hover {
    color: var(--text-content);
}

.mobile-buttons {
    display: none;
}

/* Banner */

.banner-block {
    height: 300px;
    background-repeat: no-repeat;
    border-radius: var(--border);
    background-size: 65%;
    background-color: var(--sidebar-color);
    background-position: left;
	background-image: url(/wp-content/uploads/2023/10/back.webp)
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.banner-text {
    padding-left: 40px;
}

.banner-content_img {
    padding-right: 15px;
}

.content-block.euro .banner-content_img img {
	width: 200px;
}

.banner-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 35px;
    color: var(--text-content);
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.banner-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    display: block;
    color: var(--text-content);
    text-transform: uppercase;
}

.banner_button {
    background-color: var(--color-secondary);
    background-image: var(--back-secondary);
    box-shadow: var(--shadow-secondary);
    padding: 15px 20px;
    border-radius: 30px;
    margin-top: 20px;
}

.banner_button:hover {
    background-image: var(--back-secondary-hover);
}

/* Content */

.content-block {
    padding: 120px 0 5px 0;
}

.content-block.euro .section-block {
	background-repeat: no-repeat;
	background-size: cover;
    background-image: url(/wp-content/uploads/2024/05/back-euro.webp);
}

.content-block.euro .section-block p, .content-block.euro .section-block ul li, .content-block.euro .section-block ol li {
	color: #1a313c;
}

.content-block.euro .section-block h2, .content-block.euro .section-block h3 {
	color: #1a313c;
}

.content-block.euro .section-block a {
	color: #143cdb;
	font-weight: 700;
}

.content-block.euro .section-block a:hover {
	text-decoration: underline;
}

.row {
    display: flex;
}

.right-block {
    padding: 20px 20px 20px 300px; 
}

.right-block.ru .banners {
	display: none;
}

.content-block h1 {
    font-size: 36px;
}

.section-block {
    background: var(--sidebar-color);
    border-radius: var(--border);
    position: relative;
    padding: 10px 15px;
    margin-bottom: 20px;
}

.section-block:last-child {
    margin-bottom: 0;
}

.content_page h2 {
    font-size: 32px;
}

.content_page h3 {
    font-size: 28px;
}

.content_page h4 {
    font-size: 24px;
}

.content_page p, .content_page span { 
    line-height: 30px;
    padding-bottom: 20px;
    margin-bottom: 0; 
}

.content_page a {
	color: var(--hover-text);
}

.content_page a:hover {
	color: var(--sidebar-hover);
}

.content_page ul {
    list-style: none;
    padding-left: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
}

.content_page ul li {
    width: 48%;
    position: relative;
    padding-bottom: 10px;
    padding-left: 35px;
}

.content_page ul li::before {
    position: absolute;
    width: 25px;
    height: 25px;
    background: url(/wp-content/themes/mostbet/img/bet-icon.svg)no-repeat;
    background-size: cover;
    content: "";
    left: -5px;
    top: 2px;
}

.content_page ol {
    padding-bottom: 20px;
    padding-left: 30px;
    counter-reset: myCounter;
}

.content_page ol li {
    padding-left: 15px;
    margin-bottom: 15px;
    position: relative;
    list-style: none;
}

.content_page ol li::before {
    counter-increment: myCounter;
    content: counter(myCounter);
    width: 25px;
    height: 25px;
    font-size: 16px;
    background: var(--back-color);
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: -25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-primary);
}

.content_page ol li::marker {
    font-size: 17px;
    color: #fff;
}

.banner-link {
    margin-bottom: 20px;
    text-align: center;
}

.banner-img {
    padding: 0;
	position: relative;
    border-radius: var(--border);
    border: 10px solid var(--border-color);
}

.banner-img:hover {
    border: 10px solid var(--hover-back);
    transition: .4s;
}

.banner-textcaption {
    text-align: center;
    padding: 5px 0 10px 0;
}

.banner-textcaption span {
    font-size: 14px;
    color: var(--hover-text);
}

/* Sidebar */

.sidebar-block {
    width: 280px;
    padding: 0 20px;
}

.sidebar-content {
    z-index: 1;
    position: fixed;
    width: 260px;
    top: 140px;
    padding-bottom: 20px;
    height: 100%;
    overflow-y: scroll;
}

.sidebar-top {
    border-top-left-radius: var(--border);
    border-top-right-radius: var(--border);
    background: var(--sidebar-color);
}

.sidebar-banner {
    margin-bottom: 4px;
    text-align: center;
}

.sidebar-banner img {
    position: relative;
    left: 10px;
    top: -4px;
}

.sidebar-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12px;
    margin-top: -105px;
}

.sidebar-text span {
    line-height: 1.2;
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.sidebar-text p {
    line-height: 1.2;
    font-weight: 500;
    font-size: 20px;
    color: var(--hover-text);
}

.sidebar_button {
    background-color: var(--color-secondary);
    background-image: var(--back-secondary);
    box-shadow: var(--shadow-secondary);
    position: relative;
    margin-top: 7px;
}

.sidebar_button:hover {
    background-image: var(--back-secondary-hover);
}

.sidebar-item {
    border-bottom: 2px solid var(--border-color);
}

.sidebar-item:last-child {
    margin-bottom: -30px;
    padding-bottom: 30px;
    border-bottom: none;
}

.sidebar-link {
    display: flex;
    align-items: center;
    height: 60px;
    width: 100%;
    color: var(--text);
}

.sidebar-link.active {
    color: var(--hover-text);
}

.sidebar-link:hover {
    color: var(--sidebar-hover);
}

.sidebar-item_icon {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    background-repeat: no-repeat;
    background-size: contain;
}

.sidebar-link span {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 60px;
    text-overflow: ellipsis;
}

.counter {
    flex: 1 0 auto;
    display: flex;
    justify-content: flex-end;
}

.counter-value {
    border-radius: 50%;
    background-color: var(--hover-text);
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    margin: 0 10px;
    color: var(--text-value);
}

.sidebar-bottom {
    border-radius: var(--border);
    background-color: var(--text);
    overflow: hidden;
}

.sidebar-bottom .sidebar-item {
    border-bottom: 2px solid var(--border-gray);
}

.sidebar-bottom .sidebar-item:nth-child(3) {
    border-bottom: 2px solid var(--text);
    background: var(--border-gray);
}

.sidebar-bottom .sidebar-item:last-child {
    border-bottom: none;
    background: var(--border-gray);
}

.sidebar-bottom .sidebar-link {
    color: var(--text-black);
}

.sidebar-bottom .sidebar-link:hover {
    color: var(--sidebar-hover);
}

/* Footer */

footer {
    padding-left: 300px;
}

.footer {
    background: var(--sidebar-color);
    border-top-left-radius: var(--border);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.eighteen {
    border-radius: 50%;
    color: var(--text);
    border: 2px solid #09437f;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 5px;
}

.footer-menu {
    margin-bottom: 20px;
}

.footer-menu .menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-menu .menu li {
    margin-left: 30px;
	line-height: 1.2;
	text-align: center;
}

.footer-menu .menu li:first-child {
    margin-left: 0;
}

.footer-menu .menu li a {
    font-size: 16px;
    font-weight: 500;
	line-height: 1.2;
    color: var(--text);
    text-transform: uppercase;
}

.footer-menu .menu li a:hover {
    color: var(--hover-text);
}

.footer-menu .menu .current-menu-item a {
    color: var(--hover-text);
}

.footer-payments {
    padding: 10px;
    margin: 0 20px;
    border-radius: var(--border);
    background-color: var(--footer-back);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-payments img {
    height: 27px;
    margin: 5px;
}

.footer-downloads {
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-downloads_btns {
    border-radius: var(--border);
    background-color: var(--footer-back);
    display: flex;
    align-items: center;
    padding: 0 13px;
}

.footer-downloads_btns span {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 500;
    padding: 10px 5px;
}

.footer-downloads_btns .download-btn {
    margin-left: 20px;
}

.footer-copyright {
    display: flex;
    padding: 20px;
}

.footer-col {
    display: flex;
    flex: 0 1 auto;
    justify-content: flex-start;
    align-items: flex-start;
    flex-grow: 1;
}

.col-left {
    max-width: 186px;
}

.footer-license {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--text);
}

.col-right {
    max-width: 750px;
    margin-left: 10px;
}

.col-right p {
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
}

.col-right span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.footer-dmca {
	display: flex;
	justify-content: center;
	padding-bottom: 20px;
}

.fixed_buttons {
    display: none;
    position: fixed;
    width: 100%;
    padding: 8px 10px;
    background: var(--sidebar-color);
    bottom: 0;
    left: 0;
    z-index: 8;
}

.fixed_buttons .button {
    width: 100%;
}

.fixed_buttons .button.log_button {
    margin: 0 0 0 10px;
}

/* Scroll */

.scroll-top {
    opacity: 0; 
    background-color: var(--color-secondary);
    background-image: var(--back-secondary);
    box-shadow: var(--shadow-secondary);
    color: var(--text);
    transition: 0.3s;
    position: fixed; 
    bottom: 70px; 
    right: 30px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    cursor: pointer; 
    z-index: 8;
    border-radius: 50%;
}

.scroll-top-bg {
    padding: 8px;
    position: relative;
}

.scroll-top img {
    width: 24px; 
    height: 24px;
}

.scroll-top.content_amp {
    opacity: 1;
}

.scroll-top.content_amp .scroll-top-bg {
	height: 40px;
}

/* Slots */

.slots-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slots-title {
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px 0;
}

.slots-icon {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
}

.slots-icon.popular {
    width: 44px;
    height: 50px;
    background-image: url(/wp-content/themes/mostbet/img/slots/top-icon.svg);
}

.slots-icon.games {
    width: 56px;
    height: 54px;
    background-image: url(/wp-content/themes/mostbet/img/slots/games-icon.svg);
}

.slots-title span {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 10px;
    display: block;
}

.slots-all {
    background-color: var(--sidebar-color);
    border-radius: var(--border);
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 40px;
    margin-left: 10px;
}

.slots-all span {
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

.slots-all:hover {
    background-color: var(--hover-back);
}

.all-icon {
    width: 20px;
    height: 14px;
    margin-left: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/wp-content/themes/mostbet/img/slots/all-icon.svg);
}

.slots-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
}

.slots-item {
    position: relative;
    border-radius: var(--border-slots);
}

.slots-item_content {
    border-radius: var(--border-slots);
    overflow: hidden;
    position: relative;
}

.slots-item_content:hover {
    transition: .4s;
}

.slots-item_back {
    overflow: hidden;
    position: relative;
    padding-top: 71%;
}

.slots-item_back::before {
    background-color: #003266cc;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    z-index: 1;
}

.slots-item:hover .slots-item_back::before {
    opacity: 1;
    transition: .4s;
}

.slots-item_img {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(1);
    width: 100%;
    z-index: 0;
}

.slots-item:hover .slots-item_img {
    transform: scale(1.2);
    transition: .4s;
}

.slots-item_buttons {
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: .4s;
    width: 100%;
    z-index: -1;
}

.slots-item:hover .slots-item_buttons {
    opacity: 1;
    transition: .4s;
    z-index: 2;
}

.slots-item_btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background-color: var(--color-primary);
    border-radius: var(--border);
    padding: 3px 10px;
    transition: .4s;
}

.slots-item_btn span {
    
    color: var(--text-value);;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.slots-item_btn:hover span {
    color: var(--text);
}

.slots-item_play {
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.play-icon {
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/wp-content/themes/mostbet/img/slots/play-icon.svg);
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.cup-btn {
    position: absolute;
    z-index: 4;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background-color: #35a1dd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cup-btn_icon {
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/wp-content/themes/mostbet/img/slots/cup-icon.svg);
}

.slots-item_provider {
    display: inline-flex;
    justify-content: center;
    left: 35px;
    opacity: 0;
    padding-bottom: 3px;
    padding-top: 12px;
    position: absolute;
    right: 35px;
    top: 0;
    transition: .4s;
    z-index: -1;
}

.slots-item_provider span {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 2px;
    max-height: 32px;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    transition: .3s;
}

.slots-item:hover .slots-item_provider {
    opacity: 1;
    z-index: 2;
}

.star-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    transition: .4s;
    z-index: -1;
    opacity: 0;
    width: 20px;
    height: 19px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/wp-content/themes/mostbet/img/slots/star-icon.svg);
}

.slots-item:hover .star-icon {
    opacity: 1;
    z-index: 4;
}

.star-icon:hover {
    background-image: url(/wp-content/themes/mostbet/img/slots/star-hover.svg);
}

/* Banners */

.banner-top {
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px 0;
}

.banner-top_icon {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 54px;
    height: 48px;
    background-image: url(/wp-content/themes/mostbet/img/banners-icon.svg);
}

.banner-top span {
	font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 10px;
    display: block;
}

.banner-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
}

.banner-item {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--border-slots);
    border: 10px solid var(--border-color);
    overflow: hidden;
    padding-top: 51%;
    position: relative;
    width: 100%;
}

.banner-item:hover {
    border: 10px solid var(--hover-back);
    transition: .4s;
}

/* Amp */

.header.content_amp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}

.header.content_amp a amp-img {
    display: block;
}

.header.content_amp .burger {
    border: none;
}

.header.content_amp .choose .toggled, .header.content_amp .choose .arrowed {
	display: flex;
    align-items: center;
    position: relative;
}

.header.content_amp .lang_choose .submenu {
	right: -4px;
	left: auto;
}

.menu_amp .menu {
    list-style: none;
}

.menu_amp .menu li {
    margin-bottom: 10px;
}

.menu_amp .menu li a {
    font-size: 18px;
    color: var(--text);
    font-weight: 400;
    padding: 10px 0;
}

.menu_amp .menu .current-menu-item a {
    color: var(--hover-text);
}

.menu_amp .menu .euro {
	animation: pulse 1.5s infinite;
    transition: all 0.1s;
}

.menu_amp .menu .euro a {
	color: var(--hover-text);
	font-weight: 700;
}

amp-sidebar .close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 0;
}

amp-sidebar .closeButton {
    padding: 0;
    border: none;
}

#amp-mobile-version-switcher {
    display: none;
}

.footer.content_amp .menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer.content_amp .menu li {
    margin-left: 20px;
}

.footer.content_amp .menu li:first-child {
    margin-left: 0;
}

.footer.content_amp .menu li a {
    font-size: 18px;
    color: var(--text);
    font-weight: 400;
    padding: 10px 0;
}

.footer.content_amp .menu .current-menu-item a {
    color: var(--text-content);
}

.content_page.content_amp .faq__item h3 {
    border-bottom: 1px solid var(--border-color);
}

.content_page.content_amp .faq__answer {
    display: block;
}

/* 404 Error */

.error-block {
    display: flex;
    width: 100%;
    background-color: var(--sidebar-color);
    background-position: top;
    background-size: cover;
    background-image: url(/wp-content/uploads/2023/10/error-back.webp);
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    min-height: 840px;
}

.error-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient( circle 802px at center, rgba(0, 35, 71, 0) 0%, #002347 100% );
}

.error-block-content {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 10px;
}

.error-block-content .logo {
    max-width: 90%;
    width: 300px;
    margin: 20px auto 25px;
}

.error-block-content .logo img {
    width: 100%;
}

.error-block-content p {
    color: var(--text);
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.error-img {
    margin-bottom: 50px;
}

.error-btn {
    background-color: var(--color-secondary);
    background-image: var(--back-secondary);
    box-shadow: var(--shadow-secondary);
}

.error-btn:hover {
    background-image: var(--back-secondary-hover);
}

.modified-date {
	font-size: 16px;
}

.breadcrumbs {
	margin-top: 20px;
}

.breadcrumbs p {
	line-height: 1.4;
	font-size: 14px;
}

.breadcrumbs span {
	font-size: 14px;
}

.breadcrumbs a {
	font-size: 14px;
	color: var(--hover-text);
}

/* Table of contents */
.custom__contents {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 640px) {
  .custom__contents {
    width: 600px;
  }
}
.custom__contents-submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 10px;
  background: var(--sidebar-color);
  border-radius: 39px;
  height: 45px;
  padding: 0 0 0 20px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--text);
  transition: 0.3s ease-out;
}
.custom__contents-submenu a:last-child {
  margin-bottom: 0;
}
.custom__contents-submenu a:hover {
  text-decoration: none;
  background: var(--color-primary);
	color: var(--text);
}
.custom__contents-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-secondary);
  padding-bottom: 0 !important;
  line-height: 1.2 !important;
	flex: 0 0 auto;
	max-width: 100%;
}
.custom__contents-icon::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/themes/mostbet/img/up-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}

/* APK Banner */
.apk-banner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 200px;
  background-color: var(--header);
  background-image: linear-gradient(to top, #00326600 0, var(--sidebar-color) 73%, var(--sidebar-color) 98%);
  padding-left: 10px;
  margin-bottom: 20px;
  border-radius: var(--border);
  overflow: hidden;
}
@media (min-width: 640px) {
  .apk-banner {
    padding-left: 20px;
    height: 250px;
  }
}
@media (min-width: 960px) {
  .apk-banner {
    align-items: center;
    padding-left: 0;
  }
}
.apk-banner p {
  font-size: 16px !important;
  line-height: 1.4 !important;
  font-weight: 700;
  width: 200px;
  color: var(--text) !important;
  padding-bottom: 15px !important;
}
@media (min-width: 640px) {
  .apk-banner p {
    width: 380px;
    font-size: 22px !important;
    padding-bottom: 20px !important;
  }
}
@media (min-width: 960px) {
  .apk-banner p {
    width: auto;
  }
}
.apk-banner img {
  position: absolute;
  right: 10px;
  bottom: 0;
  height: 180px;
}
@media (min-width: 640px) {
  .apk-banner img {
    height: 230px;
    right: 20px;
  }
}
.apk-banner amp-img {
  width: 125px;
}
@media (min-width: 640px) {
  .apk-banner amp-img {
    width: 160px;
  }
}
.apk-banner .btn {
  margin-top: 0;
  width: 165px;
  background-color: var(--color-secondary);
  background-image: var(--back-secondary);
  box-shadow: var(--shadow-secondary);
  font-size: 16px;
	border-radius: 30px;
	color: var(--text);
	font-weight: 700;
	height: 40px;
}
.apk-banner .btn:hover {
  background-image: var(--back-secondary-hover);
}
@media (min-width: 640px) {
  .apk-banner .btn {
    width: 300px;
    font-size: 18px;
  }
}

/* Langs */

.lang_choose {
	margin: 5px 10px;
    border-radius: var(--border);
    padding: 0 5px;
    background-color: var(--back-color);
}

.choose {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
	padding-right: 20px;
}

.choose:after {
	content: "";
	position: absolute;
	top: 12px;
	right: 5px;
	display: block;
	width: 15px;
	height: 15px;
	transform: rotate(180deg);
	transition: .3s ease-out;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(/wp-content/themes/mostbet/img/up-icon.svg);
}

.choose.show:after {
	transform: rotate(0);
}

.lang_choose .submenu {
	position: absolute;
	top: 40px;
    left: -4px;
    display: none;
	background-color: var(--back-color);
	box-shadow: 0 11px 27px #0000006e;
	border-radius: 10px;
	width: 160px;
	overflow: hidden;
	transition: .3s ease-out;
}

.lang_choose .submenu div {
	padding: 5px 10px;
	transition: .3s ease-out;
}

.lang_choose .submenu div:hover {
	background-color: #043f7e;
}

.lang_choose .submenu div a {
	display: flex;
	align-items: center;
}

.lang_choose .submenu.show {
	display: flex;
	flex-wrap: wrap;
}

.lang_choose .choose img {
	margin: 5px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	object-fit: cover;
}

.lang_choose .choose span {
	display: block;
	margin: 5px;
	color: var(--text);
	font-size: 14px;
	font-weight: 500;
    text-transform: uppercase;
}

@media screen and (max-width: 1279px) {
    .error-block {
        padding: 20px 20px 0 20px;
        overflow: auto;
    }
    .error-block-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 991px) {
    header {
        background-image: none;
        background-color: var(--sidebar-color);
    }
    .header_nav {
        display: none;
    }
    .header_desktop .burger {
        display: block;
    }
    .mobile-buttons {
        display: flex;
        align-items: center;
    }
    .header_bottom, .header_top-right, .header_top-blocking, .header_top-donload {
        display: none;
    }
    .logo {
        width: 150px;
        margin: 5px;
    }

    .row {
        flex-direction: column-reverse;
    }
    .content-block {
        padding: 59px 0 0 0;
    }
    .right-block {
        padding: 10px;
    }
    .section-block {
        padding: 10px;
    }
    h1 {
        padding: 15px 0;
    }
    h2, h3, h4, h5, h6 {
        padding: 15px 0;
    }
    .content-block h1 {
        font-size: 26px;
    }
    .content_page h2 {
        font-size: 22px;
    }
    .content_page h3 {
        font-size: 20px;
    }
	.content_page h4 {
        font-size: 18px;
    }
    p, span, li, a {
        font-size: 16px;
    }
    .sidebar-block {
        display: none;
    }

    footer {
        padding: 0 10px 55px 10px;
    }
    .footer {
        border-top-right-radius: var(--border);
    }
    .fixed_buttons {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .banner-block {
        height: 200px;
    }
    .banner-content {
        justify-content: space-around;
    }
    .banner-content_img {
        width: 33%;
    }
    .banner-text {
        text-align: center;
        padding-left: 0;
    }
    .banner-title {
        font-size: 24px;
    }
    .banner-subtitle {
        font-size: 18px;
    }
	.content-block.euro .banner-content_img img {
		width: 140px;
	}
	.content-block.euro .banner-content_img {
		width: 25%;
	}

    .slots-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-payments {
        justify-content: center;
    }
}

@media screen and (max-width: 640px) {
	.header_top-money {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .logo {
        width: 120px;
    }
	.header_top-bonus {
		display: none;
	}

    .banner-block {
        background-position: center;
        background-size: cover;
		background-image: none;
		background-color: var(--sidebar-color);
		border: 10px solid var(--hover-back);
    }
    .banner-content {
        justify-content: center;
    }
    .banner-content_img {
        display: none;
    }

    .content-block {
        padding: 51px 0 0 0;
    }
    .content_page ul {
        flex-direction: column;
    }
    .content_page ul li {
        width: 100%;
    }

    .slots-title {
        padding: 20px 0;
    }
    .slots-item_btn {
        padding: 1px 10px;
    }
    .slots-item_btn span {
        font-size: 12px;
    }
    .slots-item_provider span {
        font-size: 12px;
    }
    .play-icon {
        width: 30px;
        height: 30px;
    }
    .slots-title span {
        font-size: 14px;
        margin-left: 5px;
    }
    .slots-all {
        padding: 0 15px;
    }
    .slots-all span {
        font-size: 14px;
    }
    .slots-icon.games {
        width: 48px;
        height: 46px;
    }

    .banner-top {
        padding: 20px 0;
    }
    .banner-bottom {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-copyright {
        flex-direction: column;
    }
    .col-left {
        margin-bottom: 10px;
    }
    .col-right {
        margin-left: 0;
    }
	
	.footer-menu .menu li a {
		font-size: 14px;
	}
	
	/*.cookie-buttons button {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .cookie-buttons a {
        width: 100%;
    } */
	
	 .wp-block-table table td {
        font-size: 14px;
    }
}